home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.mdf / Docs / Interview.dir / Internal_18.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  597 b   |  28 lines

  1. on startMovie
  2.   puppetSound(0)
  3.   updateStage()
  4.   set the visible of sprite 18 to 0
  5.   repeat with x = 20 to 26
  6.     set the visible of sprite x to 0
  7.   end repeat
  8. end
  9.  
  10. on idle
  11.   if not soundBusy(1) then
  12.     puppetSound("interview")
  13.   end if
  14. end
  15.  
  16. on prepareMovie
  17.   global idioma
  18.   if idioma = "french" then
  19.     set the fileName of castLib "idiomas" to the pathName & "french.cst"
  20.   else
  21.     if idioma = "deutch" then
  22.       set the fileName of castLib "idiomas" to the pathName & "deutch.cst"
  23.     else
  24.       set the fileName of castLib "idiomas" to the pathName & "english.cst"
  25.     end if
  26.   end if
  27. end
  28.